home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
USA Bestseller
/
USA BESTSELLER Vol 1-95 (Hepp-Computer)(1995).iso
/
e202
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1994-08-22
|
485b
|
24 lines
echo off
echo.
echo INSTALL for CRUSH
if exist CRUSH.EXE goto go
echo INSTALL must be run from the distribution disk or from
echo a directory containing the distribution files.
goto exit
:go
if not "%1"=="" goto ok
echo.
echo USAGE: INSTALL directory
echo.
echo For example:
echo INSTALL C:
echo INSTALL \CRUSH1\
echo INSTALL C:\UTILS\
echo.
echo ("directory" must end in ":" or "\" and must already exist)
echo.
goto exit
:ok
copy *.* %1*.*
:exit